From: Alex Williamson Date: Thu, 6 Sep 2007 21:04:07 +0000 (-0600) Subject: [IA64] Foreign p2m: make xc_ia64_get_pfn_list() static X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14988 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=e12209779415c9c66688503e97dcc7d6b1d40351;p=xen.git [IA64] Foreign p2m: make xc_ia64_get_pfn_list() static Now xc_ia64_get_pfn_list() isn't used anymore. Make it static. Signed-off-by: Isaku Yamahata --- diff --git a/tools/libxc/ia64/xc_ia64_stubs.c b/tools/libxc/ia64/xc_ia64_stubs.c index e2307ac2d3..61446b9957 100644 --- a/tools/libxc/ia64/xc_ia64_stubs.c +++ b/tools/libxc/ia64/xc_ia64_stubs.c @@ -17,7 +17,7 @@ xc_ia64_fpsr_default(void) return FPSR_DEFAULT; } -int +static int xc_ia64_get_pfn_list(int xc_handle, uint32_t domid, xen_pfn_t *pfn_buf, unsigned int start_page, unsigned int nr_pages) { diff --git a/tools/libxc/xenctrl.h b/tools/libxc/xenctrl.h index 591e6c25a3..0df9be8e30 100644 --- a/tools/libxc/xenctrl.h +++ b/tools/libxc/xenctrl.h @@ -672,10 +672,6 @@ int xc_get_pfn_list(int xc_handle, uint32_t domid, uint64_t *pfn_buf, unsigned long xc_ia64_fpsr_default(void); -int xc_ia64_get_pfn_list(int xc_handle, uint32_t domid, - xen_pfn_t *pfn_buf, - unsigned int start_page, unsigned int nr_pages); - int xc_copy_to_domain_page(int xc_handle, uint32_t domid, unsigned long dst_pfn, const char *src_page);